home *** CD-ROM | disk | FTP | other *** search
/ Trusted Irix /B 4.0.4 / Trusted-Irix B-4.0.1.iso / dist / eoe1.idb / usr / include / sys / ik_ioctl.h.z / ik_ioctl.h
C/C++ Source or Header  |  1992-04-03  |  1KB  |  43 lines

  1. #ifndef __SYS_IK_IOCTL_H__
  2. #define __SYS_IK_IOCTL_H__
  3.  
  4. /**************************************************************************
  5.  *                                      *
  6.  *          Copyright (C) 1990, Silicon Graphics, Inc.          *
  7.  *                                      *
  8.  *  These coded instructions, statements, and computer programs  contain  *
  9.  *  unpublished  proprietary  information of Silicon Graphics, Inc., and  *
  10.  *  are protected by Federal copyright law.  They  may  not be disclosed  *
  11.  *  to  third  parties  or copied or duplicated in any form, in whole or  *
  12.  *  in part, without the prior written consent of Silicon Graphics, Inc.  *
  13.  *                                      *
  14.  **************************************************************************/
  15. #ident "$Revision: 3.4 $"
  16.  
  17. /* ioctls for the ikc driver */
  18. # ifndef ikiocode
  19. # define ikiocode(n)    ('k'<<8|(n))
  20.  
  21. # define IKIOPEEK    ikiocode('a')
  22. # define IKIOPOKE    ikiocode('b')
  23. # define IKIOPIO    ikiocode('c')
  24. # define IKIORESET    ikiocode('d')
  25. # define IKIOSETVSTATE    ikiocode('e')
  26. # define IKIOGETVSTATE    ikiocode('f')
  27. # define IKIODEBUG    ikiocode('g')
  28.  
  29. struct poke
  30. {
  31.     int f, v;
  32. };
  33.  
  34. struct vstate
  35. {
  36.     int f;
  37.     int timo;
  38.     int dummy[1];
  39. };
  40. # endif /* ikiocode */
  41.  
  42. #endif /* __SYS_IK_IOCTL_H__ */
  43.